dynamic allocation - significado y definición. Qué es dynamic allocation
Diclib.com
Diccionario en línea

Qué (quién) es dynamic allocation - definición

COMPUTER MEMORY MANAGEMENT METHODOLOGY IN WHICH THE PROGRAMMER EXPLICITLY CONTROLS ALLOCATION AND DEALLOCATION
Dynamic allocation; Custom memory allocation; Heap allocation

Dynamic asset allocation         
INVESTMENT STRATEGY
Dynamic Asset Allocation
Dynamic asset allocation is a strategy used by investment products such as hedge funds, mutual funds, credit derivatives, index funds, principal protected notes (also known as guaranteed linked notes) and other structured investment products to achieve exposure to various investment opportunities and provide 100% principal protection.
Dynamic bandwidth allocation         
TECHNIQUE BY WHICH TRAFFIC BANDWIDTH IN A SHARED TELECOMMUNICATIONS MEDIUM CAN BE ALLOCATED ON DEMAND
Dynamic bandwidth allocation method; Bandwidth-on-Demand; Bandwidth-on-demand
Dynamic bandwidth allocation is a technique by which traffic bandwidth in a shared telecommunications medium can be allocated on demand and fairly between different users of that bandwidth. This is a form of bandwidth management, and is essentially the same thing as statistical multiplexing.
Resource allocation         
ALLOCATION OF RESOURCES AMONG POSSIBLE USES
Distributed resource allocation; Allocation of resources; Resource allocation problems; Resource allocation problem; Allocation of Resources; Resource allocation mechanism; Resource Allocation; Algorithms for resource allocation
In economics, resource allocation is the assignment of available resources to various uses. In the context of an entire economy, resources can be allocated by various means, such as markets, or planning.

Wikipedia

Manual memory management

In computer science, manual memory management refers to the usage of manual instructions by the programmer to identify and deallocate unused objects, or garbage. Up until the mid-1990s, the majority of programming languages used in industry supported manual memory management, though garbage collection has existed since 1959, when it was introduced with Lisp. Today, however, languages with garbage collection such as Java are increasingly popular and the languages Objective-C and Swift provide similar functionality through Automatic Reference Counting. The main manually managed languages still in widespread use today are C and C++ – see C dynamic memory allocation.